home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / TUNEIN / TUNEIN01.DIR / 00252_Script_252 < prev    next >
Text File  |  1995-06-01  |  592b  |  23 lines

  1. on mouseDown
  2.   set thisLine = the mouseLine
  3.   if thisLine = -1 then
  4.     exit
  5.   end if
  6.   if line thisLine of field "credits/allen"  <> "[Click and hold here to view image]" then
  7.     exit
  8.   else
  9.     hilite line thisLine of field "credits/allen"
  10.     puppetSound "add a movie"
  11.     set the puppet of sprite 36 = true
  12.     set the visibility of sprite 36 = true
  13.     set the castnum of sprite 36 = the number of cast "credits/allen image"
  14.     updatestage
  15.   end if
  16. end
  17.  
  18. on mouseUp
  19.   set the puppet of sprite 36 = false
  20.   set the visibility of sprite 36 = false
  21.   updatestage
  22. end
  23.